home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
tools
/
rushdemo2
/
rexx
/
cyclecolors.rush
< prev
next >
Wrap
Text File
|
1995-03-09
|
457b
|
33 lines
/*
** $VER: CycleColors.rush 37.1 (2.12.93)
**
**
**
** Written by Douglas Keller
*/
if( address() == "REXX" ) then address "RUSH.1"
options results
x = "0123456789abcdef"
do j = 0 to 10
do i = 0 to 15
r = "0x" || insert("","",0,8,substr(x, i+1, 1))
'setpalette pen=0 red' r 'green' 0 'blue' 0
say r
end
do i = 14 to 0 by -1
r = "0x" || insert("","",0,8,substr(x, i+1, 1))
'setpalette pen=0 red' r 'green' 0 'blue' 0
say r
end
end